HTML - tags - link tag

revision:


Content

link" tag : defines the relationship with an external source syntax some examples


"link" tag : defines the relationship with an external source

top

The <link> tag defines the relationship between the current document and an external resource. The tag is most often used to link to external style sheets. But, it is also used to establish site icons (both "favicon" style icons and icons for the home screen and apps on mobile devices) among other things.

The <link> element is an empty element, it contains attributes only.

Attributes: the <link> element supports the global attributes and events attributes. Attributes specific to this tag are:

as ; value: "audio", "document", "embed", "fetch", "font", "image", "object", "script", "style", "track", "video", "worker"

returns a string representing the type of content to be preloaded by a link element.

The as property must have a value for link elements when rel="preload", or the resource will not be fetched. It may also be applied to link elements where rel="modulepreload", but if omitted, will default to script. The property should not be set for other types of link elements, such as rel="prefetch".

crossorigin ; value: anonymous, use-credentials;

specifies how the element handles cross-origin requests.

href ; value: URL;

specifies the location of the linked document.

hreflang ; value: language_code;

specifies the language of the text in the linked document.

media ; value: media_query;

specifies on what device the linked document will be displayed.

referrerpolicy ; value: no-referrer, no-referrer-when-downgrade, origin, origin-when-cross-origin, unsafe-url;

specifies which referrer to use when fetching the resource.

rel ; value: alternate, author, dns-prefetch, help, icon, license, next, pingback, preconnect, prefetch, preload, prerender, prev, search, stylesheet; required,

specifies the relationship between the current document and the linked document.

sizes; value: HeightxWidth, any;

specifies the size of the linked resource. Only for rel="icon".

title ; value: ;

defines a preferred or an alternate stylesheet.

type ; value: media_type;

specifies the media type of the linked document.


syntax

top

<link . . . .>


some examples

top

Codes:

                    <head>
                        <link rel="stylesheet" href="styles.css">
                    </head>
                

Codes:

                    <link href="main.css" rel="stylesheet">
                    <link rel="icon" href="favicon.ico">
                    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-icon-114.png" type="image/png">
                    <link href="print.css" rel="stylesheet" media="print">
                    <link href="mobile.css" rel="stylesheet" media="screen and (max-width: 600px)">
                    <link rel="preload" href="myFont.woff2" as="font" type="font/woff2" crossorigin="anonymous">
                

"rel" values

alternate : alternate representations of the current document.

author : author of the current document or article.

bookmark : permalink for the nearest ancestor section.

canonical : preferred URL for the current document.

dns-prefetch : tells the browser to preemptively perform DNS resolution for the target resource's origin.

external : the referenced document is not part of the same site as the current document.

expect : allows the page to be render-blocked until the essential parts of the document are parsed so it will render consistently.

help : link to context-sensitive help.

icon : an icon representing the current document.

license : indicates that the main content of the current document is covered by the copyright license described by the referenced document.

manifest : web app manifest.

me : indicates that the current document represents the person who owns the linked content.

modulepreload : tells to browser to preemptively fetch the script and store it in the document's module map for later evaluation. Optionally, the module's dependencies can be fetched as well.

next : indicates that the current document is a part of a series and that the next document in the series is the referenced document.

nofollow : indicates that the current document's original author or publisher does not endorse the referenced document.

noopener : creates a top-level browsing context that is not an auxiliary browsing context if the hyperlink would create either of those, to begin with (i.e., has an appropriate target attribute value).

noreferrer : no referer header will be included. Additionally, has the same effect as noopener.

opener : creates an auxiliary browsing context if the hyperlink would otherwise create a top-level browsing context that is not an auxiliary browsing context (i.e., has "_blank" as target attribute value).

pingback : gives the address of the pingback server that handles pingbacks to the current document.

preconnect : specifies that the user agent should preemptively connect to the target resource's origin.

prefetch : specifies that the user agent should preemptively fetch and cache the target resource as it is likely to be required for a followup navigation.

preload : specifies that the user agent must preemptively fetch and cache the target resource for current navigation according to the potential destination given by the "as" attribute (and the priority associated with the corresponding destination).

prerender : specifies that the user agent should preemptively fetch the target resource and process it in a way that helps deliver a faster response in the future.

prev : indicates that the current document is a part of a series and that the previous document in the series is the referenced document.

privacy-policy : gives a link to a information about the data collection and usage practices that apply to the current document.

search : gives a link to a resource that can be used to search through the current document and its related pages.

stylesheet : imports a style sheet.

tag : gives a tag (identified by the given address) that applies to the current document.

terms-of-service : link to the agreement, or terms of service, between the document's provider and users who wish to use the document.